home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Invisible Universe
/
Invisible Universe (1995)(Voyager)[Mac-PC].iso
/
mac
/
MOVIES
/
TOC.DIR
/
00003_Script_go stuff cast 3
< prev
next >
Wrap
Text File
|
1995-11-21
|
2KB
|
83 lines
on muGo whar
global gMusicLabel
put whar into gMusicLabel
addToRetrace
go to "Black Frame"
go frame gMusicLabel of movie "Music"
end muGo
on toGo whar
global gTourLabel, gCurLabelProp, gTourTimeSS, gTourTimeMW, gTourTimeCL, gTourTimeEM
put whar into gTourLabel
addToRetrace
do "set gTourTime" & char 1 to 2 of whar & " = void"
set gCurLabelProp = ""
go to "Black Frame"
go movie "Tour"
end toGo
on moGo whar
global gMovieLabel, gCurLabelProp, gMovieTimeCO, gMovieTimeCR, gMovieTimeFO, gMovieTimeSP
put whar into gMovieLabel
addToRetrace
if whar = "O" then
do "set gMovieTimeCO = void"
do "set gMovieTimeCR = void"
do "set gMovieTimeFO = void"
do "set gMovieTimeSP = void"
else
do "set gMovieTime" & char 1 to 2 of whar & " = void"
end if
set gCurLabelProp = ""
go to "Black Frame"
go movie "Movies"
end toGo
on poGo PrevOrNext
global gLastPoem
put char 2 of gLastPoem into thisPage
if PrevOrNext = "Next" then
if thisPage = "9" then
put "1" into pageNum
else put string(integer(thisPage)+1) into pageNum
else
if thisPage = "1" then
put "9" into pageNum
else put string(integer(thisPage)-1) into pageNum
end if
put "P"&pageNum into gLastPoem
go label(gLastPoem)
--put pageNum into word 1 of field "page"
end poGo
on dump what
-- do "put ""e&string(value(what))"e&"&&""e&"=""e&what"e
end
on mygo whar
global gPreloadList, gPreloadIndex, gRetraceCount, gTOCRetraceChan
-- use for this movie only
--put ">>>mygo (cast 3) whar = " & whar
-- put getOne(gPreloadIndex, whar) into myIndex
addToRetrace
set the visibility of sprite gTOCRetraceChan = (gRetraceCount > 0)
--put ">>> retrace button is: " & (gRetraceCount > 0)
go to whar
-- cursor 4
-- set the preLoadEventAbort = 0
-- loadNGo(getAt(gPreloadList, myIndex))
-- set the preLoadEventAbort = 1
-- cursor -1
--
end mygo